home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue58 / EasyWeb / Unit1.dfm < prev    next >
Encoding:
Text File  |  2000-03-11  |  1.7 KB  |  77 lines

  1. object WebModule1: TWebModule1
  2.   OldCreateOrder = False
  3.   Actions = <
  4.     item
  5.       Default = True
  6.       Name = 'Root'
  7.       OnAction = WebModule1RootAction
  8.     end
  9.     item
  10.       Name = 'BackGround'
  11.       PathInfo = '/BackGround'
  12.       OnAction = WebModule1BackGroundAction
  13.     end
  14.     item
  15.       Name = 'Chart'
  16.       PathInfo = '/Chart'
  17.       OnAction = WebModule1ChartAction
  18.     end>
  19.   Left = 350
  20.   Top = 344
  21.   Height = 200
  22.   Width = 437
  23.   object PageProducer1: TPageProducer
  24.     HTMLDoc.Strings = (
  25.       '<HTML>'
  26.       '<HEAD>'
  27.       '<title>Web Controls Demo</title>'
  28.       '</HEAD>'
  29.       
  30.         '<BODY Background="http://127.0.0.1/cgi-bin/project1.exe/Backgrou' +
  31.         'nd">'
  32.       ''
  33.       '<h1>Web Controls Demo</h1>'
  34.       ''
  35.       
  36.         'The background and chart are generated using HomeGrown'#39's Web Con' +
  37.         'trols.'
  38.       ''
  39.       '<P><IMG SRC="http://127.0.0.1/cgi-bin/project1.exe/Chart">'
  40.       ''
  41.       '</BODY>'
  42.       '</HTML>'
  43.       ' '
  44.       '')
  45.     Left = 32
  46.     Top = 16
  47.   end
  48.   object WebRotatedLabel1: TWebRotatedLabel
  49.     Angle = 25
  50.     Relief = False
  51.     Color = clWhite
  52.     Caption = 'Web Controls Demo'
  53.     Font.Charset = ANSI_CHARSET
  54.     Font.Color = clYellow
  55.     Font.Height = -32
  56.     Font.Name = 'Marking Pen'
  57.     Font.Style = []
  58.     ContentType = 'image/jpeg'
  59.     Height = 152
  60.     Left = 128
  61.     Top = 16
  62.   end
  63.   object WebXYChart1: TWebXYChart
  64.     Title = 'Graph of X vs X Squared'
  65.     BorderWidth = 1
  66.     ContentType = 'image/jpeg'
  67.     Width = 300
  68.     Height = 200
  69.     ChartType = ctLine
  70.     XLabel = 'X'
  71.     YLabel = 'X squared'
  72.     Grid = gtBoth
  73.     Left = 80
  74.     Top = 72
  75.   end
  76. end
  77.